home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / SNNSV32.ZIP / SNNSv3.2 / examples / snnsbat1.cfb < prev    next >
Text File  |  1994-04-25  |  2KB  |  61 lines

  1. #
  2. Type: SNNSBATCH_1
  3. #
  4. # This is the style for an snnsbat configuration file, type 1.
  5. #
  6. # The following keyword-value combinations may be supplied in any order.
  7. # If a key is given twice, the second appearence is taken.
  8. # Keys that are not required for a special run may be omitted.
  9. # If a key is ommited but required, a default value is assumed.
  10. # The lines may be separated with comments.
  11. #
  12. # Please note the mandatory file type specification at the begining and 
  13. # the colon following the key.
  14. #
  15. #
  16. #                                           Defaults:
  17. #
  18. #     NoOfLearnParam:      <int>                0
  19. #     LearnParam:          [ <float> ]*         0.0
  20. #     NoOfInitParam:       <int>                0
  21. #     InitParam:           [ <float> ]*         0.0
  22. #     NetworkFile:         <string>             ""
  23. #     TrainedNetworkFile:  <string>             ""
  24. #     LearnPatternFile:    <string>             ""
  25. #     TestPatternFile:     <string>             ""
  26. #     ResultFile:          <string>             ""
  27. #     InitFunction:        <string>             ""
  28. #     MaxLearnCycles:      <int>                0
  29. #     MaxErrorToStop:      <float>              0.0
  30. #     Shuffle:             [ YES | NO ]         NO
  31. #     ShuffleSubPat:       [ YES | NO ]         NO
  32. #     NoOfVarDim:          <int><int>           0 0
  33. #     SubPatternISize:        [ <int> ]*        0
  34. #     SubPatternOSize:        [ <int> ]*        0
  35. #     SubPatternIStep:        [ <int> ]*        0
  36. #     SubPatternOStep:        [ <int> ]*        0
  37. #     ResultMinMaxPattern: <int><int>           0 0
  38. #     ResultIncludeInput:  [ YES | NO ]         NO
  39. #     ResultIncludeOutput: [ YES | NO ]         YES
  40. #
  41. #######################################################################
  42. NetworkFile: letters.net
  43. #
  44. InitFunction: Randomize_Weights
  45. NoOfInitParam: 2
  46. InitParam: -1.0 1.0
  47. #
  48. LearnPatternFile: letters.pat
  49. NoOfLearnParam: 2
  50. LearnParam: 0.8 0.3
  51. MaxLearnCycles: 500
  52. MaxErrorToStop: 0.1
  53. Shuffle: YES
  54. #
  55. TrainedNetworkFile: trained_letters.net
  56. TestPatternFile: test_letters.pat
  57. ResultFile: letters.res
  58. ResultMinMaxPattern: 1 26
  59. ResultIncludeInput: NO
  60. ResultIncludeOutput: YES
  61.